/*      > C.Strpcpy     - copy a string, returning a pointer to the end */

#include <ctype.h>
#include "utils.h"

char *strpcpy (char *s, const char *t)
{
        while ( ( *s = *t ) != '\0' )
        {
                ++s;
                ++t;
        }

        return (s);
}
